home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / basic / ace24dist.lha / ace24.lha / include / prefs / prefhdr.h < prev    next >
C/C++ Source or Header  |  1996-09-10  |  1KB  |  57 lines

  1. #ifndef PREFS_PREFHDR_H
  2. #define PREFS_PREFHDR_H 1
  3. /*
  4. ** prefhdr.h for ACE Basic
  5. **
  6. ** Note: Translated to ACE by ConvertC2ACE
  7. **       @ MapMeadow Software, Nils Sjoholm
  8. **
  9. **
  10. ** Date: 09/03/95
  11. **
  12. **
  13. */
  14.  
  15. /*
  16. ** This are the StructPointer defines for prefhdr.h
  17. */
  18. #ifndef PrefHeaderPtr
  19. #define PrefHeaderPtr ADDRESS
  20. #endif
  21. /*
  22. ** End of StructPointer defines for prefhdr.h
  23. */
  24.  
  25.  
  26. /*****************************************************************************/
  27.  
  28.  
  29. #ifndef EXEC_TYPES_H
  30. #include <exec/types.h>
  31. #endif
  32.  
  33. #ifndef LIBRARIES_IFFPARSE_H
  34. #include <libraries/iffparse.h>
  35. #endif
  36.  
  37.  
  38. /*****************************************************************************/
  39.  
  40.  
  41. #define ID_PREF  1347568966 
  42. #define ID_PRHD  1347569732 
  43.  
  44.  
  45. STRUCT PrefHeader
  46.  
  47.     BYTE  ph_Version    /* version of following data */
  48.     BYTE  ph_Type   /* type of following data    */
  49.     LONGINT ph_Flags  /* always set to 0 for now   */
  50. END STRUCT 
  51.  
  52.  
  53. /*****************************************************************************/
  54.  
  55.  
  56. #endif /* PREFS_PREFHDR_H */
  57.